Design a Survey Form using HTML CSS and JavaScript
In this article, we are going to implement a survey form using HTML, CSS, and JavaScript. In this form, we will get data about the interest of people in sports. In this implementation, the data will be stored in a CSV file after successful form validations....
read more
Create a Blog Website Layout using HTML and CSS
The Blog layout consists of a header, navigation menu, main content area, and footer. The header contains the website logo, name, and its tagline. The navigation menu is used to allow users to easily navigate through the different sections of the blog. The main content area contains the list of blog posts with title, author name, published date, and content. Also, there is an archive section, that contains recently published articles list. The footer section contains additional information such as links to the blog’s social media profiles and a copyright notice....
read more
TypeScript instanceof narrowing Type
TypeScript instanceof operator is used for type narrowing, allowing us to check whether an object is an instance of a specific class or constructor function. When we use instanceof in a conditional statement, TypeScript narrows the type of a variable based on the result of the check....
read more
Language Translator using React
Translator is a web application software tool that facilitate the translation of text from one language to another language using ReactJS. This application allows users to give input Text and select input and output language Format from the list of languages and uses Microsoft Translator API. Users can also reverse the source and target languages and clear the input text. The component provides a user-friendly interface for language translation, with dynamic updates and error handling. This application is implemented using ReactJS and has a simple and responsive UI....
read more
TypeScript Capitalize<StringType> Template Literal Type
In this article, we are going to learn about Capitalize<StringType> Template Literal Type in Typescript. TypeScript is a popular programming language used for building scalable and robust applications. One of the features of Typescript is Capitalize<StringType> Template Literal Type which is a built-in utility type that helps with string manipulation. It helps to capitalize the first letter of each word in a given StringType....
read more
TypeScript Inference with Template Literals
TypeScript Inference with Template Literals helps to create specific types based on string patterns. However, they’re not mainly used for making sure that an attribute’s type matches its callback function’s argument type. TypeScript uses different methods like inference and generics for that job. Template literal types are more about working with strings and creating types based on them, not directly for linking attribute types with their callback function arguments....
read more
How to Create Custom Bootstrap Block Quote Widgets ?
In this article, we are going to implement Bootstrap Block Quote Widgets with the use of Bootstrap classes. We will use Bootstrap to style the blockquote. Blockquote is used to indicate the quotation of a large section of text from another source....
read more
TypeScript Object readonly Tuple Types
In this article, we will learn about Object readonly Tuple Types in Typescript. In TypeScript, an object with read-only tuple types is a type that represents an object with properties where each property has a specific value and the order of properties is fixed, just like a tuple. However, unlike regular tuples, you can also specify that the object is read-only, meaning that once the values are set, they cannot be modified....
read more
How to move a container inside of another container in Bootstrap 5 ?
The container is used to set the content’s margin. It contains row elements and the row elements are containers of columns. This is known as the grid system. In this article, we will learn about How to move a container inside of another container in Bootstrap 5. We will move a container to the left in another container....
read more
Create a Contact Form using HTML CSS & JavaScript
In this article, we will see how can we create a contact form with the help of HTML, CSS, and JavaScript. In a contact form there are basically two sections one is the input fields and the other is the submit button section....
read more
Create an QR Code Generator Project using HTML CSS & JavaScript
In today’s digital world, QR codes are widely used and provide a practical way to share information and access content with a quick scan. This deeply manually operated will show you step-by-step how to create a QR code generator from scratch using HTML, CSS, and JavaScript....
read more
TypeScript Function
TypeScript Functions are the most crucial aspect of TypeScript as it is a functional programming language. Functions are pieces of code that execute specified tasks. They are used to implement object-oriented programming principles like classes, objects, polymorphism, and abstraction. It is used to ensure the reusability and maintainability of the program....
read more